home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / asm / byteorder.h < prev    next >
C/C++ Source or Header  |  2005-10-13  |  1KB  |  62 lines

  1. #ifndef _I386_BYTEORDER_H
  2. #define _I386_BYTEORDER_H
  3.  
  4. #define __attribute_const__    __attribute__((__const__))
  5.  
  6. #include <asm/types.h>
  7. #include <linux/compiler.h>
  8.  
  9. #ifdef __GNUC__
  10.  
  11. /* For avoiding bswap on i386 */
  12. #ifdef __KERNEL__
  13. #include <linux/config.h>
  14. #endif
  15.  
  16. static __inline__ __attribute_const__ __u32 ___arch__swab32(__u32 x)
  17. {
  18. #ifdef CONFIG_X86_BSWAP
  19.     __asm__("bswap %0" : "=r" (x) : "0" (x));
  20. #else
  21.     __asm__("xchgb %b0,%h0\n\t"    /* swap lower bytes    */
  22.         "rorl $16,%0\n\t"    /* swap words        */
  23.         "xchgb %b0,%h0"        /* swap higher bytes    */
  24.         :"=q" (x)
  25.         : "0" (x));
  26. #endif
  27.     return x;
  28. }
  29.  
  30. static __inline__ __attribute_const__ __u64 ___arch__swab64(__u64 val)
  31.     union { 
  32.         struct { __u32 a,b; } s;
  33.         __u64 u;
  34.     } v;
  35.     v.u = val;
  36. #ifdef CONFIG_X86_BSWAP
  37.     __asm__("bswapl %0 ; bswapl %1 ; xchgl %0,%1" 
  38.         : "=r" (v.s.a), "=r" (v.s.b) 
  39.         : "0" (v.s.a), "1" (v.s.b)); 
  40. #else
  41.     v.s.a = ___arch__swab32(v.s.a); 
  42.     v.s.b = ___arch__swab32(v.s.b); 
  43.     __asm__("xchgl %0,%1" : "=r" (v.s.a), "=r" (v.s.b) : "0" (v.s.a), "1" (v.s.b));
  44. #endif
  45.     return v.u;    
  46.  
  47. /* Do not define swab16.  Gcc is smart enough to recognize "C" version and
  48.    convert it into rotation or exhange.  */
  49.  
  50. #define __arch__swab64(x) ___arch__swab64(x)
  51. #define __arch__swab32(x) ___arch__swab32(x)
  52.  
  53. #define __BYTEORDER_HAS_U64__
  54.  
  55. #endif /* __GNUC__ */
  56.  
  57. #include <linux/byteorder/little_endian.h>
  58.  
  59. #endif /* _I386_BYTEORDER_H */
  60.